Xbasic
RTFMEMO.CENTER_JUSTIFY Function
Syntax
.CENTER_JUSTIFY()
Description
The .CENTER_JUSTIFY() method center justifies text in an RTF memo object.
Example
The following example center justifies text in an RTF field in an open form.
dim obj as P
obj = :Customer_Information:rtfmemofield.this
obj.rtf.insert_text("This is RTF text")
obj.rtf.center_justify()Limitations
Desktop applications only.
See Also